repeat
Repeats this byte_array n
times.
Examples:
x'1234abcd'.repeat(3)
returnsx'1234abcd1234abcd1234abcd'
x''.repeat(3)
returnsx''
x'1234abcd'.repeat(0)
returnsx''
Since
0.11.0
Parameters
n
the number of times to repeat this byte_array
Throws
exception
when:
n
is negativen
is greater than(2^31)-1
the resulting byte array has size greater than
(2^31)-1